- Home
- Course Category
- Course Result
- Course Detail
Hot Line: 0124-2383121
Course Introduction
Includes
Certificate & Practice Material
Programs for practice
In the program below, we've introduced beginers to programming in C
Source Code: Program to find reverse of a matrix
# Program to find reverse of a matrix in C
#include<stdio.h>
void main()
{
int i,s;
int A[10];
printf("Enter values of array1:\n");
for(i=0;i<10;i++)
scanf("%d",&A[i]);
printf("reverse of the given array:");
for(i=0;i<10;i++)
printf("%d\n",A[9-i]);
}
Output
Run the program to see the OUTPUT